home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / terms / kermit / c / c86ker.hlp < prev    next >
Encoding:
Text File  |  1988-08-15  |  3.2 KB  |  81 lines

  1. CP/M-86 8086/8088-based KERMIT
  2. ------------------------------
  3.  
  4. V 2.9:  2 Dec 84 LOCAL DIR, TYPE, alphabetical wildcard send, KERMIT.INI
  5.                  no longer req'd, SET DEFAULT-DISK fixed.
  6. V 2.8: 10 Oct 84 SET DEFAULT-DISK to login disk & user, new prompt to show
  7.          current disk/user.  Local SPACE, DIRECTORY, DELETE commands.
  8.          RECEIVE filename no longer acts like GET.  Bug fixes. (RonB)
  9. V 2.7:  4 May 84 8th bit prefixing, TAKE files, KERMIT.INI capability,
  10.          bug fixes, improved messages, improved modularization. (RonB)
  11. V 2.6: 30 Mar 84 Session logging; improved interrupt handling of file names,
  12.                  error messages, modularization; bug fixes (Ron B, Rich G) 
  13. V 2.5:  7 Mar 84 SET FILE-WARNING => SET WARNING, SET TIMER ON/OFF,
  14.                  Fix 2.4 for APC, add BREAK for APC, Ron B, Bernie Eiben.
  15. V 2.4: 24 Feb 84 Flow control, send BREAK, ^X/^Z file interruption, timeouts;
  16.                  Richard Garland, Columbia University.
  17. V 2.3:  5 Feb 84 Do parity, talk to IBM mainframe; Jeff Damens, Columbia U.
  18. V 2.2: 19 Jan 84 Add CFIBFs, clean up conditionals; Bill Catchings.
  19. V 2.1:  4 Jan 84 Adds missing commands, wildcard sends; Ron Blanford, U Wash.
  20. V 0.2: 19 Dec 83 Corrects problem with RTS and DTR; Brian Orr.
  21. V 0.1:  2 Dec 83 Adds interrupt driven i/o, GET command; Bill Catchings.
  22. V 0.0: 21 Oct 83 Initial coding and pre-release; Bill Catchings, Columbia.
  23.  
  24. This version of KERMIT is written in Digital Research CP/M-86 assembler,
  25. ASM86.  It is designed to support any CP/M-86 system.  So far it supports:
  26.  
  27.     DEC Rainbow-100
  28.     NEC Advanced Personal Computer (APC)
  29.     Tektronix 4170
  30.     Fujitsu Micro 16s
  31.  
  32. Features and restrictions:
  33.  
  34. . Performs all standard KERMIT functions.
  35. . Has commands for file transfer with KERMIT servers.
  36. . Runs up to 9600 baud on all systems tested.
  37. . Can time out.
  38. . Can do 8th-bit prefixing.
  39. . Can exchange files with IBM host.
  40. . Can send BREAK.
  41. . Can do protocol to interrupt a transfer (^X/^Z).
  42. . ^C during file transfer gets back to Kermit-86 command level.
  43. . Can log terminal session. 
  44. . Has TAKE command and KERMIT.INI file.
  45. . Local CP/M functions (ERA, DIR, TYPE, SET DEFAULT disk).
  46.  
  47. . No repeat-count prefixing.
  48. . No 2- or 3-character block checks.
  49.  
  50. Known Problems:
  51.  
  52. . SET ESCAPE ^x doesn't work for certain control characters, like ^X.
  53. . SET IBM and SET FLOW should interact appropriately.
  54.  
  55. CP/M-86 KERMIT is broken up into the following source modules:
  56.  
  57.     C86CMD.A86    Command parser
  58.     C86FIL.A86    File handler
  59.     C86KER.A86    Main Program
  60.     C86PRO.A86    Protocol Module
  61.     C86TRM.A86    Terminal Emulation (v 2.6 and later)
  62.     C86UTL.A86    Utilities
  63.  
  64.     C86Xxx.A86    System Dependent I/O, xx = RB, AP, TK, FJ
  65.  
  66. The main program module, C86KER.A86, contains INCLUDE directives for the
  67. other files.  C86Xxx.A86 files exist for each system supported (Rainbow,
  68. APC, ...).  The program may be built on the CP/M-86 system by obtaining
  69. all the source files listed above, storing them on the current disk with the
  70. names indicated, renaming the appropriate C86Xxx.A86 file to C86XXX.A86,
  71. and then doing:
  72.  
  73.     ASM86 C86KER $PZ  (this takes about 6 minutes on the Rainbow)
  74.     GENCMD C86KER     (takes less than a minute)
  75.  
  76. and, if desired,
  77.  
  78.     REN KERMIT.CMD=C86KER.CMD
  79.  
  80. [End of C86KER.HLP]
  81.